home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / Sample Code / Snippets / Development Tools & Languages / AEGestalt 1.0 / IncludeFiles.h < prev    next >
Encoding:
Text File  |  1992-07-15  |  2.3 KB  |  167 lines  |  [TEXT/MPS ]

  1. //     IncludeFiles.h 
  2. //     Copyright © 1991-92 by Apple Computer, Inc. All rights reserved.
  3. //    Kent Sandvik DTS
  4. //    This file contains all the needed Macintosh Toolbox and MacApp
  5. //    header files. It is suitable for a dump file for instance.
  6. //
  7. //    <1>        khs        1.0        First final version
  8.  
  9.  
  10. #ifndef __INCLUDEFILES__
  11. #define __INCLUDEFILES__
  12.  
  13. #ifndef __TYPES__
  14. #include <Types.h>
  15. #endif
  16.  
  17. #ifndef __MACAPPTYPES__
  18. #include <MacAppTypes.h>
  19. #endif
  20.  
  21. #ifndef __MEMORY__
  22. #include <Memory.h>
  23. #endif
  24.  
  25. #ifndef __UOBJECT__
  26. #include <UObject.h>
  27. #endif
  28.  
  29. #ifndef __ULIST__
  30. #include <UList.h>
  31. #endif
  32.  
  33. #ifndef __APPLEEVENTS__
  34. #include <AppleEvents.h>
  35. #endif
  36.  
  37. #ifndef __PPCTOOLBOX__
  38. #include <PPCToolbox.h>
  39. #endif
  40.  
  41. #ifndef __EPPC_
  42. #include <EPPC.h>
  43. #endif
  44.  
  45. #ifndef __UEVENT__
  46. #include <UEvent.h>
  47. #endif
  48.  
  49. #ifndef __UCOMMAND__
  50. #include <UCommand.h>
  51. #endif
  52.  
  53. #ifndef __EDITIONS__
  54. #include <Editions.h>
  55. #endif
  56.  
  57. #ifndef __SCRAP__
  58. #include <Scrap.h>
  59. #endif
  60.  
  61.  
  62. #ifndef __DIALOGS__
  63. #include <Dialogs.h>
  64. #endif
  65.  
  66. #ifndef __UEVTHANDLER__
  67. #include <UEventHandler.h>
  68. #endif
  69.  
  70. #ifndef __UAPPLICATION__
  71. #include <UApplication.h>
  72. #endif
  73.  
  74. #ifndef __UDOCUMENT__
  75. #include <UDocument.h>
  76. #endif
  77.  
  78. #ifndef __BALLOONS__
  79. #include <Balloons.h>
  80. #endif
  81.  
  82. #ifndef __UVIEW__
  83. #include <UView.h>
  84. #endif
  85.  
  86. #ifndef __UWINDOW__
  87. #include <UWindow.h>
  88. #endif
  89.  
  90. #ifndef __UFAILURE__
  91. #include <UFailure.h>
  92. #endif
  93.  
  94. #ifndef __UGEOMETRY__
  95. #include <UGeometry.h>
  96. #endif
  97.  
  98. #ifndef __UMACAPPUTILITIES__
  99. #include <UMacAppUtilities.h>
  100. #endif
  101.  
  102. #ifndef __MENUS__
  103. #include <Menus.h>
  104. #endif
  105.  
  106. #ifndef __UMENUMGR__
  107. #include <UMenuMgr.h>
  108. #endif
  109.  
  110. #ifndef __UPATCH__
  111. #include <UPatch.h>
  112. #endif
  113.  
  114. #ifndef __UMACAPPGLOBALS__
  115. #include <UMacAppGlobals.h>
  116. #endif
  117.  
  118. #ifndef __UFILEBASEDDOCUMENT__
  119. #include <UFileBasedDocument.h>
  120. #endif
  121.  
  122. #ifndef __FONTS__
  123. #include <Fonts.h>
  124. #endif
  125.  
  126. #ifndef __PACKAGES__
  127. #include <Packages.h>
  128. #endif
  129.  
  130. #ifndef __TOOLUTILS__
  131. #include <ToolUtils.h>
  132. #endif
  133.  
  134. #ifndef __UERRORMGR__
  135. #include <UErrorMgr.h>
  136. #endif
  137.  
  138. #ifndef __UDIALOG__
  139. #include <UDialog.h>
  140. #endif 
  141.  
  142. #ifndef __ERRORS__
  143. #include <Errors.h>
  144. #endif
  145.  
  146. #ifndef __STDIO__
  147. #include <stdio.h>
  148. #endif
  149.  
  150. #ifndef __PLSTRINGFUNCS__
  151. #include <PLStringFuncs.h>
  152. #endif
  153.  
  154. //    Specific files for this implementation
  155.  
  156. #ifndef __RESOURCECONSTANTS__
  157. #include "ResourceConstants.h"
  158. #endif
  159.  
  160. #ifndef __DEFINITIONS__
  161. #include "Definitions.h"
  162. #endif
  163.  
  164.  
  165. #endif __INCLUDEFILES__
  166.  
  167.